Footer   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 10
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A render 0 8 1
1
/*eslint max-len: ["error", { "code": 120 }]*/
2
3
import React, { Component } from 'react';
4
import meSmallImage from '../../assets/img/Paul-Moreland.jpg';
5
6
class Footer extends Component {
7
    render() {
8
        return (
9
            <footer id="site-footer">
10
                <div className="me-tag">
11
                    <img src={meSmallImage} alt="Paul Moreland" />
12
                    <p>Paul Moreland är student hos Blekinge Tekniska Högskola och studerar Webbprogrammering</p>
13
                </div>
14
            </footer>
15
        );
16
    }
17
}
18
19
export default Footer;
20